home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Microsoft Interactive CD Sampler
/
Microsoft Interactive CD Sampler.iso
/
DEMOS
/
BOOKS
/
BKSHELF.DIR
/
00045_soundTimer --.ls
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1996-07-19
|
292 b
|
17 lines
global paused, timerList, timerCount
on exitFrame
if paused then
idle()
go(the frame)
else
idle()
if the timer >= (60 * getAt(timerList, timerCount)) then
set timerCount to timerCount + 1
go(the frame + 1)
else
go(the frame)
end if
end if
end